home *** CD-ROM | disk | FTP | other *** search
/ Internet Info 1994 March / Internet Info CD-ROM (Walnut Creek) (March 1994).iso / networking / cisco / mib.trap83 < prev    next >
Encoding:
Text File  |  1992-08-07  |  5.1 KB  |  135 lines

  1.  
  2.  
  3.  
  4.  
  5.           -- Request for Comments: Draft             cisco Systems, Inc.
  6.  
  7.  
  8.                                 -- cisco Trap MIB
  9.  
  10.                                 -- Mon Nov 18 1991
  11.  
  12.  
  13.                               -- cisco Systems, Inc.
  14.                                  -- 1525 O'Brien
  15.                              -- Menlo Park, CA  94025
  16.  
  17.                           -- customer-service@cisco.com
  18.  
  19.  
  20.  
  21.           -- 1. Introduction
  22.  
  23.           -- This memo describes the snmp traps that are implemented for
  24.           -- the cisco Systems, Inc.  set of products including the
  25.           -- Gateway Server, Terminal Server, Trouter, and Protocol
  26.           -- Translator.  The document relies upon the Structure of
  27.           -- Management Information (SMI), RFC1155.  It is presented in
  28.           -- a format described in RFC1215.
  29.  
  30.     CISCOTRAP-MIB DEFINITIONS ::= BEGIN
  31.  
  32.           IMPORTS
  33.               sysUpTime, ifIndex, ifDescr, ifType, egpNeighAddr, 
  34.               tcpConnState
  35.                    FROM RFC1213-MIB
  36.               cisco, whyReload, locIfReason, authAddr, tslineSesType,
  37.               loctcpConnElapsed, loctcpConnInBytes, loctcpConnOutBytes,
  38.               tsLineUser
  39.                    FROM CISCO-MIB
  40.               TRAP-TYPE
  41.                    FROM RFC-1215;
  42.  
  43.           -- The standard traps 
  44.  
  45.           coldStart TRAP-TYPE
  46.               ENTERPRISE  snmp
  47.               VARIABLES   { sysUpTime, whyReload }
  48.               DESCRIPTION
  49.                           "A coldStart trap signifies that the sending
  50.                           protocol entity is reinitializing itself such
  51.                           that the agent's configuration or the protocol
  52.                           entity implementation may be altered."
  53.               ::= 0
  54.  
  55.           -- Cisco does not generate warmstart traps
  56.  
  57.           warmStart TRAP-TYPE
  58.               ENTERPRISE  snmp
  59.               DESCRIPTION
  60.                           "A warmStart trap signifies that the sending
  61.                           protocol entity is reinitializing itself such
  62.                           that neither the agent configuration nor the
  63.                           protocol entity implementation is altered."
  64.               ::= 1
  65.  
  66.           linkDown TRAP-TYPE
  67.               ENTERPRISE  snmp
  68.               VARIABLES   { ifIndex, ifDescr, ifType, locIfReason }
  69.               DESCRIPTION
  70.                           "A linkDown trap signifies that the sending
  71.                           protocol entity recognizes a failure in one of
  72.                           the communication links represented in the
  73.                           agent's configuration."
  74.               ::= 2
  75.  
  76.           linkUp TRAP-TYPE
  77.               ENTERPRISE  snmp
  78.               VARIABLES   { ifIndex, ifDescr, ifType, locIfReason }
  79.               DESCRIPTION
  80.                           "A linkUp trap signifies that the sending
  81.                           protocol entity recognizes that one of the
  82.                           communication links represented in the agent's
  83.                           configuration has come up."
  84.               ::= 3
  85.  
  86.           authenticationFailure TRAP-TYPE
  87.               ENTERPRISE  snmp
  88.               VARIABLES   { authAddr }
  89.               DESCRIPTION
  90.                           "An authenticationFailure trap signifies that
  91.                           the sending protocol entity is the addressee
  92.                           of a protocol message that is not properly
  93.                           authenticated.  While implementations of the
  94.                           SNMP must be capable of generating this trap,
  95.                           they must also be capable of suppressing the
  96.                           emission of such traps via an implementation-
  97.                           specific mechanism."
  98.               ::= 4
  99.  
  100.           egpNeighborLoss TRAP-TYPE
  101.               ENTERPRISE  snmp
  102.               VARIABLES   { egpNeighAddr }
  103.               DESCRIPTION
  104.                           "An egpNeighborLoss trap signifies that an EGP
  105.                           neighbor for whom the sending protocol entity
  106.                           was an EGP peer has been marked down and the
  107.                           peer relationship no longer obtains."
  108.               ::= 5
  109.  
  110.     -- Cisco Private Enterprise Traps
  111.  
  112.           reload TRAP-TYPE
  113.               ENTERPRISE  cisco
  114.               VARIABLES   { sysUpTime, whyReload }
  115.               DESCRIPTION
  116.                           "A reload trap signifies that the sending
  117.                           protocol entity is reinitializing itself such
  118.                           that the agent's configuration or the protocol
  119.                           entity implementation may be altered."
  120.               ::= 0
  121.  
  122.           tcpConnectionClose TRAP-TYPE
  123.               ENTERPRISE  cisco
  124.               VARIABLES   { tslineSesType, tcpConnState, 
  125.                             loctcpConnElapsed, loctcpConnInBytes,
  126.                             loctcpConnOutBytes, tsLineUser }
  127.               DESCRIPTION
  128.                           "A tty trap signifies that a TCP connection,
  129.                           previously established with the sending
  130.                           protocol entity for the purposes of a tty
  131.                           session, has been terminated."
  132.               ::= 1
  133.  
  134.      END
  135.